home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-16 | 1.2 KB | 61 lines | [TEXT/MPS ] |
- {
- Created: Sunday, January 6, 1991 at 11:15 PM
- SegLoad.p
- Pascal Interface to the Macintosh Libraries
-
- Copyright Apple Computer, Inc. 1985-1990
- All rights reserved
- }
-
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
- {$IFC NOT UsingIncludes}
- UNIT SegLoad;
- INTERFACE
- {$ENDC}
-
- {$IFC UNDEFINED UsingSegLoad}
- {$SETC UsingSegLoad := 1}
-
- {$I+}
- {$SETC SegLoadIncludes := UsingIncludes}
- {$SETC UsingIncludes := 1}
- {$IFC UNDEFINED UsingTypes}
- {$I $$Shell(PInterfaces)Types.p}
- {$ENDC}
- {$SETC UsingIncludes := SegLoadIncludes}
-
- CONST
- appOpen = 0; {Open the Document (s)}
- appPrint = 1; {Print the Document (s)}
-
- TYPE
- AppFile = RECORD
- vRefNum: INTEGER;
- fType: OSType;
- versNum: INTEGER; {versNum in high byte}
- fName: Str255;
- END;
-
-
- PROCEDURE UnloadSeg(routineAddr: Ptr);
- INLINE $A9F1;
- PROCEDURE ExitToShell;
- INLINE $A9F4;
- PROCEDURE GetAppParms(VAR apName: Str255;VAR apRefNum: INTEGER;VAR apParam: Handle);
- INLINE $A9F5;
- PROCEDURE CountAppFiles(VAR message: INTEGER;VAR count: INTEGER);
- PROCEDURE GetAppFiles(index: INTEGER;VAR theFile: AppFile);
- PROCEDURE ClrAppFiles(index: INTEGER);
-
-
- {$ENDC} { UsingSegLoad }
-
- {$IFC NOT UsingIncludes}
- END.
- {$ENDC}
-
-